home *** CD-ROM | disk | FTP | other *** search
- ;Install script for Floppy.device
-
- (user 2)
- (set @default-dest "")
- (set fdev "floppy.device")
-
- (set filesystem
- (= 0
- (askchoice
- (prompt "\nSelect the filesystem:")
- (help
- "Select a filesystem for floppy drives.\n"
- "If you select Ami-FileSafe make sure "
- "the file 'L:FloppyAFS' exist.\n\n\n"
- @askchoice-help
- )
- (choices "FastFileSystem" "Ami-FileSafe")
- (default 0)
- )
- )
- )
-
- (set mountdir "AFS")
- (if filesystem (set mountdir "FFS"))
-
- (copyfiles
- (source fdev)
- (dest "Devs:")
- (safe)
- )
-
- (copyfiles
- (source mountdir)
- (dest "Sys:Storage/DosDrivers/")
- (all)
- (safe)
- )
-